home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2001 / MacHack 2001.toast / pc / The Hacks / GrowBoxDock / Sources / Scripts / SimpleTextStartup
Encoding:
Text File  |  1998-03-18  |  883 b   |  28 lines

  1. #
  2. #    File:        SimpleTextStartup
  3. #
  4. #    Copyright:    © 1997 by Apple Computer, Inc., all rights reserved.
  5. #
  6. #    Change History (most recent first):
  7. #
  8. #         <2>     7/29/97    db        add SimpleText to build targets.
  9. #         <1>     7/28/97    db        first checked in
  10. #
  11.  
  12. If !{QTMLDontUseProjectMenus}
  13.  
  14.     # add dividing line if menu already exists
  15.     If {QTProjectMenuExists}
  16.         AddMenu "{QTProjectMenu}" "( ----- SimpleText -----"        Echo
  17.     Else
  18.         Set QTProjectMenuExists 1
  19.     End
  20.  
  21.     AddMenu "{QTProjectMenu}" "Update SimpleText Sources"    "SafeUpdateFiles -SimpleText ∑∑ ∂"{worksheet}∂""
  22.     AddMenu "{QTProjectMenu}" "Find SimpleText MRO files"  "EchoModifyReadOnly -O ∂`files -r -f -s -t 'TEXT' ∂"{SimpleTextSources}∂"∂` ∑∑ ∂"{worksheet}∂""
  23.     AddMenu "{QTProjectMenu}" "Build SimpleText"            'BuildMenu SimpleText'
  24.  
  25.     # add all targets for 'Build Everything' menu item
  26.     Set -e AllQuickTimeTargets "{AllQuickTimeTargets} SimpleText"
  27. End
  28.